home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 9385 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  747 b 

  1. Path: news.starnet.net!wupost!waikato!kcbbs!riplin
  2. Newsgroups: comp.lang.c
  3. Subject: Re: Is COBOL Dead?!
  4. From: riplin@kcbbs.gen.nz (Richard Plinston)
  5. Date: 10 Mar 96 03:15:33 GMT
  6. Message-ID: <329669.11733.25091@kcbbs.gen.nz>
  7. References: <danpop.825533181@rscernix>
  8. Organization: Kappa Crucis Unix BBS, Auckland, New Zealand
  9.  
  10. > Try to port the "hello, world" program to COBOL.  If your interest in
  11. > COBOL survives this experience, go ahead with gCOBOL :-)  You may also
  12. > like AppleScript, which should have been named son-of-COBOL :-)
  13.  
  14. Let me see now, full ANSI85 program:
  15.  
  16.        Identification Division.
  17.        Program-Id.  Hello.
  18.        Procedure Division.
  19.        Main.
  20.            DISPLAY "Hello World".
  21.  
  22. Wow, that is almost several pages.
  23.  
  24.